home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getdirentries.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  123 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.29.17.39.29;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.31.20;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.15.48.56;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Lint.
  32. @
  33. text
  34. @/* 
  35.  * getdirentries.c --
  36.  *
  37.  *    Procedure to map from Unix getdirentries system call to Sprite.
  38.  *
  39.  * Copyright (C) 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: getdirentries.c,v 1.1 88/06/19 14:31:20 ouster Exp $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include "sprite.h"
  48. #include "fs.h"
  49.  
  50. #include "compatInt.h"
  51.  
  52.  
  53. /*
  54.  *----------------------------------------------------------------------
  55.  *
  56.  * getdirentries --
  57.  *
  58.  *    Procedure to map from Unix getdirentries system call to Sprite 
  59.  *    Fs_?.
  60.  *
  61.  *    This routine does not fully implement the getdirentries
  62.  *    semantics. It does enough to keep the readdir library routine
  63.  *    happy.
  64.  *
  65.  * Results:
  66.  *    amount read     - if the call was successful.
  67.  *    UNIX_ERROR     - the call was not successful. 
  68.  *              The actual error code stored in errno.  
  69.  *
  70.  * Side effects:
  71.  *    None.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76.     /* ARGSUSED */
  77. int
  78. getdirentries(fd, buf, nbytes, basep)
  79.     int  fd;
  80.     char *buf;
  81.     int nbytes;
  82.     long *basep;
  83. {
  84.     ReturnStatus status;    /* result returned by Fs_Read */
  85.     int    amountRead;
  86.  
  87.     /*
  88.      * Read an entry in the directory specified by fd.
  89.      */
  90.  
  91.     status = Fs_Read(fd, nbytes, buf, &amountRead);
  92.     if (status != SUCCESS) {
  93.     errno = Compat_MapCode(status);
  94.     return(UNIX_ERROR);
  95.     } else {
  96.     return(amountRead);
  97.     }
  98. }
  99. @
  100.  
  101.  
  102. 1.2.1.1
  103. log
  104. @Initial branch for Sprite server.
  105. @
  106. text
  107. @d11 1
  108. a11 1
  109. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/getdirentries.c,v 1.2 88/07/29 17:39:29 ouster Exp $ SPRITE (Berkeley)";
  110. @
  111.  
  112.  
  113. 1.1
  114. log
  115. @Initial revision
  116. @
  117. text
  118. @d11 1
  119. a11 1
  120. static char rcsid[] = "$Header: proto.c,v 1.1 86/03/04 16:46:31 douglis Exp $ SPRITE (Berkeley)";
  121. d43 1
  122. @
  123.